home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / gbrowse.zip / TEST.RMK < prev   
Text File  |  1992-07-12  |  571b  |  23 lines

  1. // traffic.rmk
  2. // define macros
  3. makepath[.ch] = "\clipper5\include"
  4. makepath[.h] = "\clipper5\include"
  5. //
  6. // Inference rule for compiling (.prg) to .OBJ files
  7. .prg.obj:
  8.         CLIPPER $* /A/M/N/W
  9. //
  10. // Inference rule for compiling (.c) to .OBJ files
  11. .c.obj:
  12.         qcl /c /AL /Gs /Zl /FPi $*.c
  13. //        tcc -c -ml -f- -a -r -O -Z $* 
  14. //
  15. // Dependency statements for .OBJ files
  16. //
  17. TEST.OBJ:       test.prg gbrowse.ch
  18.  
  19. // Dependency rule for linking .OBJ files to a .EXE file
  20. //
  21. TEST.EXE:       test.obj gbrowse.obj
  22.         RTLINK FI test, gbrowse
  23.